home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / bob13.arc / MAKEFILE < prev    next >
Text File  |  1991-10-01  |  208b  |  13 lines

  1. OFILES=bob.obj bobcom.obj bobdbg.obj bobint.obj bobfcn.obj \
  2. bobmem.obj bobscn.obj
  3.  
  4. CFLAGS=-w-rvl -ml
  5.  
  6. .c.obj:
  7.     bcc -c $(CFLAGS) $<
  8.  
  9. bob.exe:    $(OFILES)
  10.     bcc -ebob -ml $(OFILES)
  11.  
  12. $(OFILES):    bob.h
  13.